home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / i / imagefxv2.1a.lha / ImageFX / Rexx / AutoFX / ApplyTexture.ifx < prev    next >
Text File  |  1996-03-02  |  701b  |  35 lines

  1. /*
  2.  * Template.ifx
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Template for AutoFX scripts.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Frame number (1 - N)
  9.  *    Word(Arg(1),2) = Main filename ("-" if not specified)
  10.  *    Word(Arg(1),3) = Swap filename ("-" if not specified)
  11.  *    Word(Arg(1),4) = Sequence number
  12.  *    Word(Arg(1),5) = Total number of frames (N)
  13.  *
  14.  * Returns:
  15.  *    0 if successful, non-zero on failure
  16.  *
  17.  */
  18.  
  19. OPTIONS RESULTS
  20.  
  21. base  = 'Autofx_ApplyTex_'
  22.  
  23. framenum = Word(Arg(1),1)
  24. mainname = Word(Arg(1),2)
  25. swapname = Word(Arg(1),3)
  26. seqnum   = Word(Arg(1),4)
  27. framemax = Word(Arg(1),5)
  28.  
  29. tname = GETCLIP(base||'Texture')
  30. tdep  = GETCLIP(base||'Depth')
  31.  
  32. Hook ApplyTexture tname 0 tdep SHINY
  33.  
  34. EXIT
  35.